home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Power Programmierung 2
/
Power-Programmierung CD 2 (Tewi)(1994).iso
/
gnu
/
djgpp
/
src
/
libgplus.5
/
libgplus
/
gplus-in
/
errno.h
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1992-03-06
|
351 b
|
25 lines
#ifndef errno_h
extern "C" {
#ifdef __errno_h_recursive
#include_next <errno.h>
#else
#define __errno_h_recursive
#include_next <errno.h>
#define errno_h 1
extern char* sys_errlist[];
extern int sys_nerr;
#ifndef errno
extern int errno;
#endif
void perror(const char*);
char* strerr(int);
#endif
}
#endif